'Declaration
Public Overloads Shared Sub LogTrace( _ ByVal exception As Exception, _ ByVal message As String, _ ByVal ParamArray args() As Object _ )
'Usage
Dim exception As Exception Dim message As String Dim args() As Object Utils.LogTrace(exception, message, args)
public: static void LogTrace( Exception^ exception, String^ message, ... array<Object^>^ args )
Parameters
- exception
- The exception to log.
- message
- Format string of the log message in message template format. Example:
"User {User} logged in from {Address}"
- args
- An object array that contains zero or more objects to format.